home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / sig / sigUnixStubs.h < prev   
C/C++ Source or Header  |  1992-12-18  |  875b  |  28 lines

  1. /*
  2.  * sigUnixStubs.h --
  3.  *
  4.  *     Declarations for sig module Unix compatibility stubs.
  5.  *
  6.  * Copyright (C) 1991 Regents of the University of California
  7.  * All rights reserved.
  8.  *
  9.  *
  10.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/sig/sigUnixStubs.h,v 1.1 91/07/26 17:24:27 shirriff Exp $ SPRITE (Berkeley)
  11.  */
  12.  
  13. #ifndef _SIG_UNIX_STUBS
  14. #define _SIG_UNIX_STUBS
  15.  
  16. #include <sprite.h>
  17. #include <user/sys/signal.h>
  18.  
  19. extern int Sig_KillStub _ARGS_((int pid, int sig));
  20. extern int Sig_KillpgStub _ARGS_((int pgrp, int sig));
  21. extern int Sig_SigvecStub _ARGS_((int sig, struct sigvec *newVectorPtr, struct sigvec *oldVectorPtr));
  22. extern int Sig_SigblockStub _ARGS_((int mask));
  23. extern int Sig_SigsetmaskStub _ARGS_((int mask));
  24. extern int Sig_SigpauseStub _ARGS_((int mask));
  25. extern int Sig_SigstackStub _ARGS_((struct sigstack *ss, struct sigstack *oss));
  26.  
  27. #endif /* _SIG_UNIX_STUBS */
  28.